PreviousNextTracker indexSee it online !

(117/308) 1002 - DBTerminal PostgreSQL settings are wrong

The PostgreSQL driver classname is wrong and it builds the wrong JDBC connection URI. The fix is to update some strings in DBTerminal\dbterminal\databases\PostGreSQL.java. A diff of the fix I made is below:

\*\*\* PostGreSQL.java Mon Jan 19 14:51:04 2004
--- PostGreSQL.java.fixed Tue Apr 15 17:49:49 2008
\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*
\*\*\* 10,16 \*\*\*\*
\*/
public class PostGreSQL extends AbstractDatabase {
public PostGreSQL() {
\! super("PostGreSQL", "postgres", "postgresql.Driver");
}

/\*\*
--- 10,16 ----
\*/
public class PostGreSQL extends AbstractDatabase {
public PostGreSQL() {
\! super("PostGreSQL", "postgresql", "org.postgresql.Driver");
}

/\*\*

Submitted chishomi - 2008-04-15 22:04:49 Assigned
Priority 5 Labels
Status open Group None
Resolution None

Comments